-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: #110 support group by column positions #519
Conversation
Codecov Report
@@ Coverage Diff @@
## master #519 +/- ##
==========================================
- Coverage 76.09% 76.08% -0.01%
==========================================
Files 155 157 +2
Lines 26575 26901 +326
==========================================
+ Hits 20221 20468 +247
- Misses 6354 6433 +79
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is looking good @jychen7 -- thank you for the contribution 👍 A few more tests and it will be good to go from my perspective
\n TableScan: person projection=None", | ||
); | ||
quick_test( | ||
"SELECT state, age AS b, COUNT(1) FROM person GROUP BY 2, 1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me @jychen7 -- thank you so much!
Which issue does this PR close?
Closes #110
What changes are included in this PR?
similar to extract and resolve alias, we create new functions to extract and resolve positions
(note: alias is resolve recursively, but position is resolve as a whole)
Are there any user-facing changes?
no